From: Antoine du Hamel Date: Fri, 16 May 2025 12:55:50 +0000 (+0200) Subject: [PATCH] build: fix defaults for shared llhttp X-Git-Tag: archive/raspbian/22.22.2+dfsg+_cs22.19.15-1+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com//%22gabor.peterffy%40gmail.com/%22/%22http:/www.example.com/%22gabor.peterffy%40gmail.com/%22?a=commitdiff_plain;h=6f788fb62811b2d50c3a503a6b6fadd337efdef5;p=nodejs.git [PATCH] build: fix defaults for shared llhttp PR-URL: https://github.com/nodejs/node/pull/58269 Reviewed-By: James M Snell Reviewed-By: Richard Lau Gbp-Pq: Topic deps Gbp-Pq: Name llhttp-defaults.patch --- diff --git a/configure.py b/configure.py index 8a50b4b8d..fa8489a0a 100755 --- a/configure.py +++ b/configure.py @@ -293,7 +293,7 @@ shared_optgroup.add_argument('--shared-http-parser-includes', shared_optgroup.add_argument('--shared-http-parser-libname', action='store', dest='shared_http_parser_libname', - default='http_parser', + default='llhttp', help='alternative lib name to link to [default: %(default)s]') shared_optgroup.add_argument('--shared-http-parser-libpath', @@ -2321,7 +2321,7 @@ configure_node_cctest_sources(output) configure_napi(output) configure_debian(output) configure_library('zlib', output) -configure_library('http_parser', output) +configure_library('http_parser', output, pkgname='libllhttp') configure_library('libuv', output) configure_library('ada', output) configure_library('simdjson', output)